home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
LIBRARY
/
TOOLPAS2
/
NOTRAIL.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1992-04-24
|
284b
|
16 lines
var
ibuf,obuf: array[1..20480] of char;
line: string;
begin
settextbuf(input,ibuf);
settextbuf(output,obuf);
while not eof do
begin
readln(line);
while line[length(line)] = ' ' do
dec(line[0]);
writeln(line);
end;
end.